mirror of
https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2025-10-03 16:20:58 +08:00
new file: .github/workflows/ci.yml new file: .github/workflows/codeql.yml deleted: .github/workflows/mega-linter.yml new file: .github/workflows/pr-auto-fix.yml deleted: .mega-linter.yml new file: .stylelintrc.json modified: phpcs.xml new file: phpstan.neon new file: phpunit.xml
15 lines
242 B
JSON
15 lines
242 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 12,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "warn",
|
|
"no-console": "off"
|
|
}
|
|
}
|