mirror of
https://github.com/mshick/add-pr-comment.git
synced 2025-12-31 14:20:32 +11:00
* feat: do not test user.login by default * ci: define user login in integration test * ci: define dogfood test separately * build: new dist build
35 lines
769 B
JSON
35 lines
769 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["@typescript-eslint", "prettier"],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"prettier/@typescript-eslint",
|
|
"plugin:prettier/recommended"
|
|
],
|
|
"rules": {
|
|
"prettier/prettier": [
|
|
"error",
|
|
{
|
|
"singleQuote": true,
|
|
"trailingComma": "all",
|
|
"bracketSpacing": false,
|
|
"printWidth": 120,
|
|
"tabWidth": 2,
|
|
"semi": false
|
|
}
|
|
],
|
|
"camelcase": "off",
|
|
"@typescript-eslint/camelcase": "off",
|
|
"@typescript-eslint/no-non-null-assertion": "off"
|
|
},
|
|
"env": {
|
|
"node": true,
|
|
"jest": true,
|
|
"es6": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
}
|
|
}
|