Skip to content

Commit c322032

Browse files
committed
chore(*): switch from JSHint/JSCS to ESLint
Thanks to @Narretz for help in fixing style violations and to @gkalpak for a very extensive review. Closes angular#14952
1 parent 517b9bd commit c322032

File tree

308 files changed

+6562
-5807
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+6562
-5807
lines changed

.eslintignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
bower_components/**
2+
build/**
3+
docs/bower_components/**
4+
docs/app/assets/js/angular-bootstrap/**
5+
docs/config/templates/**
6+
node_modules/**
7+
lib/htmlparser/**
8+
src/angular.bind.js
9+
src/ngParseExt/ucd.js
10+
i18n/closure/**
11+
tmp/**

.eslintrc-base.json

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
{
2+
"rules": {
3+
// Rules are divided into sections from http://eslint.org/docs/rules/
4+
5+
// Possible errors
6+
"comma-dangle": ["error", "never"],
7+
"no-cond-assign": ["error", "except-parens"],
8+
"no-constant-condition": ["error", {"checkLoops": false}],
9+
"no-control-regex": "error",
10+
"no-debugger": "error",
11+
"no-dupe-args": "error",
12+
"no-dupe-keys": "error",
13+
"no-duplicate-case": "error",
14+
"no-empty-character-class": "error",
15+
"no-empty": "error",
16+
"no-ex-assign": "error",
17+
"no-extra-boolean-cast": "error",
18+
"no-extra-semi": "error",
19+
"no-func-assign": "error",
20+
"no-inner-declarations": "error",
21+
"no-invalid-regexp": "error",
22+
"no-irregular-whitespace": "error",
23+
"no-negated-in-lhs": "error",
24+
"no-obj-calls": "error",
25+
"no-regex-spaces": "error",
26+
"no-sparse-arrays": "error",
27+
"no-unreachable": "error",
28+
"use-isnan": "error",
29+
"no-unsafe-finally": "error",
30+
"valid-typeof": "error",
31+
"no-unexpected-multiline": "error",
32+
33+
// Best practices
34+
"accessor-pairs": "error",
35+
"array-callback-return": "error",
36+
"eqeqeq": ["error", "allow-null"],
37+
"no-alert": "error",
38+
"no-caller": "error",
39+
"no-case-declarations": "error",
40+
"no-eval": "error",
41+
"no-extend-native": "error",
42+
"no-extra-bind": "error",
43+
"no-extra-label": "error",
44+
"no-fallthrough": "error",
45+
"no-floating-decimal": "error",
46+
"no-implied-eval": "error",
47+
"no-invalid-this": "error",
48+
"no-iterator": "error",
49+
"no-multi-str": "error",
50+
"no-new-func": "error",
51+
"no-new-wrappers": "error",
52+
"no-new": "error",
53+
"no-octal-escape": "error",
54+
"no-octal": "error",
55+
"no-proto": "error",
56+
"no-redeclare": "error",
57+
"no-return-assign": "error",
58+
"no-script-url": "error",
59+
"no-self-assign": "error",
60+
"no-self-compare": "error",
61+
"no-sequences": "error",
62+
"no-throw-literal": "error",
63+
"no-unmodified-loop-condition": "error",
64+
"no-unused-expressions": "error",
65+
"no-unused-labels": "error",
66+
"no-useless-call": "error",
67+
"no-useless-concat": "error",
68+
"no-useless-escape": "error",
69+
"no-void": "error",
70+
"no-with": "error",
71+
"radix": "error",
72+
"wrap-iife": ["error", "inside"],
73+
74+
// Strict mode
75+
"strict": ["error", "global"],
76+
77+
// Variables
78+
"no-delete-var": "error",
79+
"no-label-var": "error",
80+
"no-restricted-globals": ["error", "event"],
81+
"no-shadow-restricted-names": "error",
82+
"no-undef-init": "error",
83+
"no-undef": "error",
84+
"no-unused-vars": ["error", { "vars": "local", "args": "none" }],
85+
86+
// Node.js
87+
"handle-callback-err": "error",
88+
89+
// Stylistic issues
90+
"array-bracket-spacing": ["error", "never"],
91+
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
92+
"comma-style": ["error", "last"],
93+
"eol-last": "error",
94+
"keyword-spacing": "error",
95+
"linebreak-style": ["error", "unix"],
96+
"max-len": ["error", { "code": 200, "ignoreComments": true, "ignoreUrls": true }],
97+
"new-cap": "error",
98+
"new-parens": "error",
99+
"no-array-constructor": "error",
100+
"no-bitwise": "error",
101+
"no-mixed-spaces-and-tabs": "error",
102+
"no-multiple-empty-lines": ["error", { "max": 3, "maxEOF": 1 }],
103+
"no-whitespace-before-property": "error",
104+
"no-spaced-func": "error",
105+
"no-trailing-spaces": "error",
106+
"no-unneeded-ternary": "error",
107+
"semi-spacing": "error",
108+
"semi": "error",
109+
"space-before-blocks": ["error", "always"],
110+
"space-before-function-paren": ["error", "never"],
111+
"space-in-parens": ["error", "never"],
112+
"space-infix-ops": "error",
113+
"space-unary-ops": ["error", { "words": true, "nonwords": false }],
114+
"unicode-bom": ["error", "never"]
115+
}
116+
}

.eslintrc-browser.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"extends": "./.eslintrc-base.json",
3+
4+
"env": {
5+
// Note: don't set `"browser": true`; code in "src/" should be compatible with
6+
// non-browser environments like Node.js with a custom window implementation
7+
// like jsdom. All browser globals should be taken from window.
8+
"browser": false,
9+
"node": false
10+
},
11+
12+
"globals": {
13+
"window": false,
14+
15+
"angular": false
16+
}
17+
}

.eslintrc-node.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./.eslintrc-base.json",
3+
4+
"env": {
5+
"browser": false,
6+
"node": true
7+
}
8+
}

.eslintrc-todo.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
// This config contains proposed rules that we'd like to have enabled but haven't
3+
// converted the code to adhere yet. If a decision comes to not enable one of these
4+
// rules, it should be removed from the file. Every rule that got enabled in the
5+
// end should be moved from here to a respective section in .eslintrc.json
6+
7+
"rules": {
8+
// Rules are divided into sections from http://eslint.org/docs/rules/
9+
10+
// Best practices
11+
"complexity": ["error", 10],
12+
"dot-notation": "error",
13+
"dot-location": ["error", "property"],
14+
15+
// Stylistic issues
16+
"block-spacing": ["error", "always"],
17+
"comma-spacing": "error",
18+
"id-blacklist": ["error", "event"],
19+
"indent": ["error", 2],
20+
"key-spacing": ["error", { "beforeColon": false, "afterColon": true, "mode": "minimum" }],
21+
"object-curly-spacing": ["error", "never"],
22+
"object-property-newline": ["error", { "allowMultiplePropertiesPerLine": true }],
23+
"operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" }}],
24+
"quotes": ["error", "single"]
25+
}
26+
}

.eslintrc.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"root": true,
3+
"extends": "./.eslintrc-node.json"
4+
}

.jscsrc

-48
This file was deleted.

.jshintignore

-2
This file was deleted.

.jshintrc

-5
This file was deleted.

.jshintrc-base

-24
This file was deleted.

0 commit comments

Comments
 (0)