-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy path.eslintrc
30 lines (30 loc) · 753 Bytes
/
.eslintrc
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
{
"extends": [
"plugin:@wordpress/eslint-plugin/recommended"
],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto",
"parenSpacing": true,
"tabWidth": 4,
"useTabs": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": true,
"arrowParens": "always"
}
],
"@wordpress/i18n-text-domain": [
"error",
{
"allowedTextDomain": [
"jobplace"
]
}
]
}
}