tc-strings
Version:
A library for handling strings
48 lines (47 loc) • 749 B
Plain Text
{
"extends": [
"eslint:recommended",
"google"
],
"plugins": [
"jest"
],
"settings": {},
"rules": {
"no-duplicate-imports": [
"error",
{
"includeExports": false
}
],
"no-throw-literal": "off",
"semi": [
"error",
"always",
{
"omitLastInOneLineBlock": true
}
],
"no-console": "off",
"max-len": [
"error",
{
"ignoreStrings": true,
"ignoreComments": true,
"ignoreTemplateLiterals": true
}
]
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"modules": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest/globals": true
}
}