react-controller-audio-player
Version:
A set of primitives to build a simple, flexible audio player
46 lines (45 loc) • 966 B
JSON
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": ["react"],
"extends": "airbnb-base",
"rules": {
"no-tabs": "off",
//"indent": ["error", "tab", { "SwitchCase": 1 }],
"no-console": "error", // airbnb = warn
"object-curly-newline": "off", // airbnb = min 4
"consistent-return": "off",
"import/order": [
"off",
{
"groups": [
"builtin",
"external",
"internal",
"parent",
"sibling",
"index"
],
"newlines-between": "never"
}
],
"default-case": "off",
"react/jsx-uses-react": [1],
"react/jsx-uses-vars": [1],
"react/react-in-jsx-scope": [1],
"operator-linebreak": ["error", "after"]
}
}