UNPKG

492 BJavaScriptView Raw
1module.exports = {
2 extends: ['./base.js'],
3 plugins: ['filenames'],
4 env: {
5 browser: false,
6 es6: true,
7 node: true,
8 },
9 rules: {
10 /* File naming ****************************************************************/
11 // Everything should be kebab case by default
12 'filenames/match-regex': ['error', '^[a-z-\\.]+$', true],
13 // The default export name, when converted to kebab case, should match the filename
14 'filenames/match-exported': ['error', 'kebab'],
15 },
16};