UNPKG

eslint-config-7geese

Version:

An eslint config to enforce JavaScript coding style at 7Geese.

12 lines (11 loc) 380 B
module.exports = { plugins: ['filenames'], rules: { // Enforce dash-cased filenames 'filenames/match-regex': ['error', '^[a-z0-9\\-\\.]+$', false], // Match the file name against the default exported value in the module 'filenames/match-exported': 'off', // Don't allow index.js files 'filenames/no-index': 'off', }, };