| 123456789101112131415161718192021222324 |
- 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"],
- // }
- // }
- }
- };
- };
|