md-links-gavp
Version:
A library that finds and validates the status of the links inside a markdown file
27 lines (25 loc) • 531 B
JavaScript
module.exports = {
env: {
commonjs: true,
es2021: true,
node: true,
},
extends: [
'airbnb-base',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
rules: {
semi: ['error', 'always'],
quotes: ['error', 'single'],
'no-console': ['off'],
'linebreak-style': ['error', 'windows'],
'object-shorthand': ['off'],
'max-len': ['off'],
'consistent-return': ['off'],
'no-else-return': ['off'],
'no-return-await': ['off'],
},
};