Skip to content

Commit b64c0a4

Browse files
authored
Merge pull request #131 from jeffbski/remove-eslint-plugin-standard
remove unnecessary eslint-plugin-standard
2 parents a23058c + e3a4168 commit b64c0a4

File tree

3 files changed

+544
-234
lines changed

3 files changed

+544
-234
lines changed

.eslintrc.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
module.exports = {
22
env: {
3-
mocha: true,
3+
mocha: true
44
},
55
plugins: ['chai-friendly'],
6-
extends: ['standard', 'prettier', 'prettier/standard'],
6+
extends: ['standard', 'prettier'],
77
root: true,
88
rules: {
99
'no-use-before-define': 'off',
1010
'no-unused-vars': [
1111
'error',
1212
{
13-
varsIgnorePattern: 'should|expect',
14-
},
13+
varsIgnorePattern: 'should|expect'
14+
}
1515
],
1616
// disable the original no-unused-expressions use chai-friendly
1717
'no-unused-expressions': 'off',
18-
'chai-friendly/no-unused-expressions': 'error',
19-
},
18+
'chai-friendly/no-unused-expressions': 'error'
19+
}
2020
};

0 commit comments

Comments
 (0)