forked from GoogleChrome/developer.chrome.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
36 lines (34 loc) · 1.17 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module.exports = {
extends: ['./node_modules/gts', 'plugin:ava/recommended'],
parserOptions: {
sourceType: 'module',
},
globals: {
ga: true,
},
env: {
browser: true,
node: true,
},
rules: {
// By default AVA will ignore folders or files with underscores in
// their name. Since we have test paths like /site/_data/… we need to
// disable this linter rule and enable these paths in our ava.config.js.
'ava/no-ignored-test-files': 0,
// These rules check if your package requires devDependencies. These rules
// are useful if you're publishing a package to npm but we're not, we're
// building an application and we require devDependencies in a lot of
// places. For our use case it makes sense to disable this rule.
// Read more: https://github.com/mysticatea/eslint-plugin-node/issues/47
'node/no-unpublished-require': 0,
'node/no-unpublished-import': 0,
// Even though we target Node v14 (and v12 also supported modules), eslint
// still complains that modules are not yet suppoted.
'node/no-unsupported-features/es-syntax': [
'error',
{
ignores: ['modules'],
},
],
},
};