| 1234567891011121314151617181920212223 |
- module.exports = function(config) {
- return {
- source: {
- files: {
- src: ['<%= srcDir %>/app/**/*.ts', '!<%= srcDir %>/app/**/*.d.ts'],
- }
- },
- options: {
- configuration: {
- 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"],
- }
- }
- }
- };
- };
|