node-yt-search
Version:
Search in YouTube With NodeJS
35 lines • 751 B
JSON
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn",
"ignoreComments": 0,
"max-len": "off",
"no-shadow": "off",
"linebreak-style": "off",
"class-methods-use-this": "off",
"radix": "off",
"no-param-reassign": "off",
"no-console": "off",
"no-multi-assign": "off",
"global-require":"off",
"consistent-return":"off"
},
"extends": "airbnb"
}