installed plugin AudioIgniter version 1.7.3

This commit is contained in:
2022-04-17 00:39:10 +00:00
committed by Gitium
parent dbc3ae04ae
commit 55ea6cf8dd
56 changed files with 13860 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{
"extends": [
"airbnb",
"plugin:prettier/recommended",
"prettier/react"
],
"plugins": [
"import"
],
"globals": {
"aiStrings": true
},
"env": {
"browser": true
},
"rules": {
"arrow-body-style": 0,
"no-confusing-arrow": 0,
"global-require": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"import/prefer-default-export": 0,
"react/jsx-filename-extension": 0,
"react/require-default-props": 0,
"react/forbid-prop-types": 0,
"react/default-props-match-prop-types": 0,
"react/prefer-stateless-function": 0,
"react/jsx-curly-spacing": [2, {
"when": "never",
"children": true
}],
"react/no-array-index-key": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/no-static-element-interactions": 0,
"react/destructuring-assignment": 0,
"react/button-has-type": 0,
"jsx-a11y/label-has-for": 0
}
}