danger-plugin-lint-report
Version:
This plugin reads checkstyle / lint reports and posts issues and violations as inline comments in pull requests.
25 lines (24 loc) • 492 B
JSON
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"allowJs": false,
"pretty": true,
"strictNullChecks": true,
"declaration": true,
"esModuleInterop": true
},
"lib":["es2017"],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"dangerfile.ts"
],
"exclude": [
"dangerfile.ts",
"node_modules",
"dist"
]
}