-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
50 lines (50 loc) · 1.1 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
module.exports = {
extends: [
'plugin:@wordpress/eslint-plugin/recommended',
'plugin:@typescript-eslint/eslint-recommended',
],
parser: '@typescript-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: 'piano-block',
},
],
'prettier/prettier': [
'error',
{
useTabs: true,
tabWidth: 2,
singleQuote: true,
printWidth: 100,
bracketSpacing: true,
parenSpacing: true,
bracketSameLine: false,
},
],
},
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',
},
},
],
};