-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(eslint): warning on bootstrap class (#5255)
- Loading branch information
1 parent
e12b3cd
commit b3f28a7
Showing
4 changed files
with
231 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@talend/eslint-plugin": minor | ||
"@talend/eslint-config": minor | ||
--- | ||
|
||
feat: add warning on bootstrap class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
// https://getbootstrap.com/docs/3.3/css/ | ||
const BOOTSTRAP_CLASS = [ | ||
// status | ||
'disabled', | ||
'active', | ||
'success', | ||
'warning', | ||
'danger', | ||
'info', | ||
'blockquote-reverse', | ||
// background | ||
'bg-primary', | ||
'bg-success', | ||
'bg-info', | ||
'bg-warning', | ||
'bg-danger', | ||
// btn | ||
'btn', | ||
'btn-primary', | ||
'btn-default', | ||
'btn-success', | ||
'btn-info', | ||
'btn-warning', | ||
'btn-danger', | ||
'btn-link', | ||
'btn-lg', | ||
'btn-sm', | ||
'btn-xs', | ||
'btn-block', | ||
|
||
'caret', | ||
'pull-left', | ||
'pull-right', | ||
'clearfix', | ||
'show', | ||
'hide', | ||
'sr-only', | ||
|
||
// grid | ||
'container', | ||
'row', | ||
|
||
// forms | ||
'checkbox', | ||
'control-label', | ||
'form-inline', | ||
'form-group', | ||
'form-control', | ||
'help-block', | ||
'input-group', | ||
'input-group-addon', | ||
|
||
//navbar | ||
'nav', | ||
'navbar-left', | ||
'navbar-right', | ||
'navbar-text', | ||
'navbar-btn', | ||
'navbar-form', | ||
'navbar-link', | ||
|
||
//list | ||
'list-unstyled', | ||
'list-inline', | ||
'dl-horizontal', | ||
|
||
//table | ||
'table', | ||
'table-condensed', | ||
'table-hover', | ||
'table-striped', | ||
//text | ||
'text-muted', | ||
'text-primary', | ||
'text-sucess', | ||
'text-info', | ||
'text-warning', | ||
'text-danger', | ||
'text-hide', | ||
|
||
//responsive | ||
'hidden-xs', | ||
'hidden-sm', | ||
'hidden-md', | ||
'hidden-lg', | ||
]; | ||
|
||
const message = 'bootstrap 3 class are deprecated'; | ||
|
||
module.exports = { | ||
meta: { | ||
docs: { | ||
description: 'Check if any bootstrap class is used inside a className call', | ||
category: 'Build', | ||
recommended: false, | ||
}, | ||
fixable: null, | ||
schema: {}, | ||
messages: { | ||
useBootstrapClass: "'{{className}}' should not be used", | ||
}, | ||
}, | ||
|
||
create: function create(context) { | ||
let classNameName; | ||
return { | ||
ImportDeclaration: function (node) { | ||
if (node.source.value === 'classnames') { | ||
const spec = node.specifiers.find(s => s.type === 'ImportDefaultSpecifier'); | ||
if (spec) { | ||
classNameName = spec.local.name; | ||
} | ||
} | ||
}, | ||
CallExpression: function (node) { | ||
if (!classNameName) { | ||
return; | ||
} | ||
if (node.callee?.name === classNameName) { | ||
node.arguments.forEach(value => { | ||
if (value.type === 'Literal') { | ||
const values = value.value.split(' '); | ||
if (values.some(v => BOOTSTRAP_CLASS.includes(v))) { | ||
context.report({ | ||
node: value, | ||
message, | ||
}); | ||
} | ||
} else if (value.type === 'ObjectExpression') { | ||
value.properties.forEach(props => { | ||
if (BOOTSTRAP_CLASS.includes(props.key?.value)) { | ||
context.report({ | ||
node: props.key, | ||
message, | ||
}); | ||
} | ||
}); | ||
} | ||
}); | ||
} | ||
}, | ||
JSXAttribute: function (node) { | ||
if (node.value?.type === 'Literal') { | ||
const values = node.value.value.split(' '); | ||
if (values.some(v => BOOTSTRAP_CLASS.includes(v))) { | ||
context.report({ | ||
node, | ||
message, | ||
}); | ||
} | ||
} | ||
}, | ||
}; | ||
}, | ||
}; |
69 changes: 69 additions & 0 deletions
69
tools/eslint-plugin/tests/src/rules/use-bootstrap-class.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/** | ||
* @fileoverview Check if the import of d3 is not on d3-* | ||
* @author Jean-Michel FRANCOIS | ||
*/ | ||
|
||
//------------------------------------------------------------------------------ | ||
// Requirements | ||
//------------------------------------------------------------------------------ | ||
|
||
const rule = require('../../../src/rules/use-bootstrap-class'); | ||
const RuleTester = require('eslint').RuleTester; | ||
const parser = require.resolve('@babel/eslint-parser'); | ||
const parserOptions = { | ||
babelOptions: { | ||
configFile: require.resolve('@talend/scripts-config-babel'), | ||
}, | ||
}; | ||
|
||
//------------------------------------------------------------------------------ | ||
// Tests | ||
//------------------------------------------------------------------------------ | ||
|
||
describe('test', () => {}); | ||
const ruleTester = new RuleTester(); | ||
ruleTester.run('talend-use-bootstrap-class', rule, { | ||
valid: [ | ||
{ | ||
code: `import classnames from 'classnames'; | ||
classnames('foo', { 'bar': true })`, | ||
parser, | ||
parserOptions, | ||
}, | ||
], | ||
|
||
invalid: [ | ||
{ | ||
code: `import classnames from 'classnames'; | ||
classnames('foo', 'btn')`, | ||
parser, | ||
parserOptions, | ||
errors: [ | ||
{ | ||
message: 'bootstrap 3 class are deprecated', | ||
}, | ||
], | ||
}, | ||
{ | ||
code: `import classnames from 'classnames'; | ||
classnames('foo', { 'btn-default': true })`, | ||
parser, | ||
parserOptions, | ||
errors: [ | ||
{ | ||
message: 'bootstrap 3 class are deprecated', | ||
}, | ||
], | ||
}, | ||
{ | ||
code: `<button className="btn-default foo">foo</button>`, | ||
parser, | ||
parserOptions, | ||
errors: [ | ||
{ | ||
message: 'bootstrap 3 class are deprecated', | ||
}, | ||
], | ||
}, | ||
], | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters