mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
21 lines
457 B
JSON
21 lines
457 B
JSON
{
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"node": true,
|
|
"es6": true,
|
|
"jest": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020,
|
|
"ecmaFeatures": {
|
|
"impliedStrict": true
|
|
}
|
|
},
|
|
"extends": ["airbnb", "plugin:unicorn/recommended", "prettier"],
|
|
"plugins": ["react", "jsx-a11y", "import", "prettier", "flowtype", "unicorn"],
|
|
"settings": { "react": { "version": "latest" } },
|
|
"rules": {
|
|
"prettier/prettier": "error"
|
|
}
|
|
}
|