word-table
Version:
word-table is simple browserjs / nodejs library for drawing tables in the terminal/console.
58 lines • 1.09 kB
Plain Text
{
"env": {
"browser": true,
"node": true,
"jest": true,
"es6": true
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module"
},
"extends": [
"eslint-config-airbnb"
],
"globals": {
},
"rules": {
"comma-dangle": 0,
"consistent-return": 0,
"func-names": 0,
"global-require": 0,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"indent": 0,
"key-spacing": 0,
"linebreak-style": 0,
"new-cap": 0,
"no-cond-assign": 0,
"no-empty": 0,
"no-fallthrough": 0,
"no-loop-func": 0,
"no-mixed-operators": 0,
"no-new": 0,
"no-param-reassign": 0,
"no-restricted-syntax": 0,
"no-return-assign": 0,
"no-underscore-dangle": 0,
"object-curly-spacing": 0,
"prefer-rest-params": 0,
"react/jsx-filename-extension": 0,
"react/jsx-space-before-closing": 0,
"strict": 0,
"max-len": [
2,
120,
4,
{
"ignoreUrls": true
}
],
"id-length": [
2,
{
"min": 1
}
]
}
}