sandpaper
Version:
Sandpaper is a commandline tool that's used to smooth out the rough edges when coding websites using HTML, CSS, and Javascript.
26 lines (24 loc) • 344 B
JavaScript
;
module.exports = {
parserOptions: {
ecmaVersion: 12
},
env: {
node: true
},
plugins: [
'no-use-extend-native',
'unicorn',
'promise',
'import',
'node',
'eslint-comments'
],
extends: [
'xo',
'plugin:unicorn/recommended',
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings'
]
};