feat(eslint): Renamed the configuration file

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 17:46:22 +04:00
parent 34d55a2162
commit f577ea55fe
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import eslint from "./rules/eslint.json";
import rules from "./rules/default.json";
module.exports = {
"extends": ["eslint:all"],
"rules": { ...eslint },
"rules": { ...rules },
};