Switch linting to ESLint and Prettier

This commit is contained in:
Behind The Math
2018-12-23 11:40:12 -05:00
parent 2c6506af65
commit 98f54e164f
6 changed files with 34 additions and 144 deletions

8
.eslintrc.json Normal file
View File

@@ -0,0 +1,8 @@
{
"extends": ["eslint-config-i-am-meticulous/es5"],
"rules": {
"import/order": "off",
"import/max-dependencies": "off",
"import/extensions": ["error", "never"]
}
}