mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
25 lines
660 B
JavaScript
25 lines
660 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
source: {
|
|
files: {
|
|
src: ['<%= srcDir %>/app/**/*.ts', '!<%= srcDir %>/app/**/*.d.ts'],
|
|
}
|
|
},
|
|
options: {
|
|
configuration: 'tslint.json'
|
|
// {
|
|
// rules: {
|
|
// curly: true,
|
|
// align: [true, "parameters", "statements"],
|
|
// indent: [true, "spaces"],
|
|
// "class-name": true,
|
|
// "interface-name": true,
|
|
// "semicolon": true,
|
|
// "use-strict": [false, "check-module", "check-function"],
|
|
// "whitespace": [true, "check-branch", "check-decl", "check-type"],
|
|
// }
|
|
// }
|
|
}
|
|
};
|
|
};
|