mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-22 22:30:52 +01:00
955e801547
* Start pixi v6.5 changes * Fix assets * Add tilemap back * Update stylesheets * Update icons * Update room preview window * Update renderer config * Bump renderer version * Fix sass warning * Change start command
111 lines
2.4 KiB
JSON
111 lines
2.4 KiB
JSON
{
|
|
"root": true,
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"pragma": "React",
|
|
"version": "18.0.0"
|
|
}
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": [
|
|
"plugin:react/recommended",
|
|
"plugin:react/jsx-runtime",
|
|
"plugin:react-hooks/recommended"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"react"
|
|
],
|
|
"rules": {
|
|
"linebreak-style": [
|
|
"off"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"@typescript-eslint/indent": [
|
|
"error",
|
|
4,
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"array-bracket-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"brace-style": [
|
|
"error",
|
|
"allman"
|
|
],
|
|
"template-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-multi-spaces": [
|
|
"error"
|
|
],
|
|
"@typescript-eslint/object-curly-spacing": [
|
|
"error",
|
|
"always",
|
|
{
|
|
"arraysInObjects": true,
|
|
"objectsInObjects": false
|
|
}
|
|
],
|
|
"@typescript-eslint/ban-types": [
|
|
"error",
|
|
{
|
|
"types": {
|
|
"String": true,
|
|
"Boolean": true,
|
|
"Number": true,
|
|
"Symbol": true,
|
|
"{}": false,
|
|
"Object": false,
|
|
"object": false,
|
|
"Function": false
|
|
},
|
|
"extendDefaults": true
|
|
}
|
|
],
|
|
"no-switch-case-fall-through": [
|
|
"off"
|
|
],
|
|
"jsx-quotes": [
|
|
"error"
|
|
],
|
|
"react/prop-types": [
|
|
"off"
|
|
],
|
|
"react/jsx-curly-spacing": [
|
|
"error",
|
|
{
|
|
"when": "always",
|
|
"children": true
|
|
}
|
|
],
|
|
"react/jsx-equals-spacing": [
|
|
"error"
|
|
],
|
|
"react/jsx-newline": [
|
|
"error",
|
|
{
|
|
"prevent": true
|
|
}
|
|
]
|
|
}
|
|
}
|