| 12345678910111213141516171819202122 |
- module.exports = function(config) {
- return {
- src: [
- 'Gruntfile.js',
- '<%= srcDir %>/app/**/*.js',
- '<%= srcDir %>/plugin/**/*.js',
- '!<%= srcDir %>/app/dashboards/*'
- ],
- options: {
- config: ".jscs.json",
- },
- };
- };
- /*
- "requireCurlyBraces": ["if", "else", "for", "while", "do", "try", "catch"],
- "requireSpaceAfterKeywords": ["if", "else", "for", "while", "do", "switch", "return", "try", "catch"],
- "disallowLeftStickedOperators": ["?", "+", "-", "/", "*", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
- "disallowRightStickedOperators": ["?", "+", "/", "*", ":", "=", "==", "===", "!=", "!==", ">", ">=", "<", "<="],
- "requireRightStickedOperators": ["!"],
- "requireLeftStickedOperators": [","],
- */
|