Skip to content

Commit a6271c4

Browse files
committed
Merge branch 'hotfix/eslintrc'
2 parents 7e3086b + 5cca631 commit a6271c4

File tree

4 files changed

+47
-690
lines changed

4 files changed

+47
-690
lines changed

.eslintrc

+40-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
11
{
2-
"extends": "standard"
2+
"rules": {
3+
"comma-dangle": [2,"always"],
4+
"no-cond-assign": [1,"except-parens"],
5+
"no-console": 1,
6+
"no-constant-condition": 1,
7+
"no-control-regex": 1,
8+
"no-debugger": 1,
9+
"no-dupe-args": 1,
10+
"no-dupe-keys": 1,
11+
"no-duplicate-case": 1,
12+
"no-empty-character-class": 1,
13+
"no-empty": 1,
14+
"no-ex-assign": 1,
15+
"no-extra-boolean-cast": 1,
16+
"no-extra-parens": [1,"all"],
17+
"no-extra-semi": 1,
18+
"no-func-assign": 1,
19+
"no-inner-declarations": [1,"both"],
20+
"no-invalid-regexp": 1,
21+
"no-irregular-whitespace": 1,
22+
"no-negated-in-lhs": 1,
23+
"no-obj-calls": 1,
24+
"no-regex-spaces": 1,
25+
"no-sparse-arrays": 1,
26+
"no-unreachable": 1,
27+
"use-isnan": 1,
28+
"valid-typeof": 1,
29+
"no-fallthrough": 1,
30+
"no-octal": 1,
31+
"no-redeclare": 1,
32+
"no-delete-var": 1,
33+
"no-undef": 1,
34+
"no-undefined": 1,
35+
"no-unused-vars": 1,
36+
"array-bracket-spacing": [1,"always",{"singleValue":true,"objectsInArrays":true,"arraysInArrays":true}],
37+
"camelcase": [1,{"properties":"always"}],
38+
"comma-spacing": [1,{"after":true}],
39+
"indent": [1,2],
40+
"quotes": [1,"single","avoid-escape"]
41+
}
342
}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [4.0.1] - 2017-09-19
6+
# Updates
7+
- Updates `.eslintrc` with custom rules
8+
9+
# Removes
10+
- "standard" an npm package for ESLint rules
11+
512
## [4.0.0] - 2017-09-15
613
# Updates
714
- Clean up of global scss from #104

0 commit comments

Comments
 (0)