Add a function for waiting for linters to complete, and add a test which checks that linting updates the loclist.

This commit is contained in:
w0rp
2016-10-17 23:26:19 +01:00
parent 654a172473
commit bf45ab6d8d
3 changed files with 64 additions and 0 deletions

11
.eslintrc.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
parserOptions: {
ecmaVersion: 6,
sourceType: "module",
},
rules: {
semi: 'error',
'space-infix-ops': 'warn',
radix: 'error',
}
}