2
Я использую ESLint и gulp-eslint. Есть ли способ активировать правила linter для аномалий Angular2?ESLint - Angular2 Anotations
@Component({
selector: 'example',
styleUrls: ['app.css'],
templateUrl: 'app.html', //Linter should warn cause the semicolon
})
//Linter should warn in case of a blank line between componente and class
export class App {
}