-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
56 lines (56 loc) · 1.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
module.exports = {
extends: [ 'plugin:@wordpress/eslint-plugin/recommended' ],
parser: '@babel/eslint-parser',
rules: {
'import/no-extraneous-dependencies': 'off',
'react/jsx-boolean-value': 'error',
'react/jsx-curly-brace-presence': [ 'error', { props: 'never', children: 'never' } ],
'@wordpress/dependency-group': 'error',
'@wordpress/no-unsafe-wp-apis': 'off',
'@wordpress/i18n-text-domain': [
'error',
{
allowedTextDomain: 'flexible-spacer-block',
},
],
'prettier/prettier': [
'error',
{
useTabs: true,
tabWidth: 2,
singleQuote: true,
printWidth: 100,
bracketSpacing: true,
parenSpacing: true,
bracketSameLine: false,
},
],
},
globals: {
fsbConf: true,
},
parserOptions: {
requireConfigFile: false,
babelOptions: {
presets: [ '@babel/preset-react' ],
},
},
overrides: [
{
files: [ '**/test/**/*.js', '**/__tests__/**/*.js', '**/*.spec.js' ],
extends: [ 'plugin:@wordpress/eslint-plugin/test-unit' ],
settings: {
jest: {
version: 26,
},
},
},
{
files: [ 'test/e2e/**/*.js' ],
extends: [ 'plugin:@wordpress/eslint-plugin/test-e2e' ],
rules: {
'jest/expect-expect': 'off',
},
},
],
};