lintry

init

module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
// "indent": [
// "warn",
// 4
// ],
"linebreak-style": "off",
"quotes": "off",
"semi": [
"off",
"always"
],
"no-console": [
"error", { allow: ["info", "warn", "error"]}
],
"no-unused-vars": [
"warn",
{ "vars": "all", "args": "after-used", "ignoreRestSiblings": false }
],
"no-constant-condition": [
"warn"
],
"no-control-regex": "off"
}
};
{
"esversion": 6
}
\ No newline at end of file
{
"compilerOptions": {
"target": "es7"
},
"exclude": [
"node_modules"
]
}
\ No newline at end of file
{
"name": "leetcode-test",
"version": "1.0.0",
"description": "leetcode-cn.com上的题库代码实现",
"main": ".eslintrc.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@gitlab.kmlab.com:lintry/leetcode-test.git"
},
"keywords": [],
"author": "",
"license": "MIT"
}
This diff could not be displayed because it is too large.