mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
299 B
14 lines
299 B
10 years ago
|
## Test-specific linter rules
|
||
|
|
||
|
rules:
|
||
8 years ago
|
# ECMAScript 6
|
||
|
# http://eslint.org/docs/rules/#ecmascript-6
|
||
|
no-var: 2
|
||
|
prefer-const: 2
|
||
|
|
||
|
# Custom rules in tools/eslint-rules
|
||
8 years ago
|
prefer-assert-iferror: 2
|
||
8 years ago
|
prefer-assert-methods: 2
|
||
8 years ago
|
## common module is mandatory in tests
|
||
|
required-modules: [2, common]
|