Skip to content

Commit

Permalink
feat: Add antd to the codebase (#10508)
Browse files Browse the repository at this point in the history
  • Loading branch information
nruhe authored Aug 5, 2020
1 parent 3983fff commit 51a88cb
Show file tree
Hide file tree
Showing 9 changed files with 917 additions and 2 deletions.
12 changes: 12 additions & 0 deletions superset-frontend/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,12 @@ module.exports = {
'no-prototype-builtins': 0,
'no-restricted-properties': 0,
'no-restricted-syntax': 0,
'no-restricted-imports': ['error', {
'paths': [{
'name': 'antd',
'message': 'Please import Ant components from the index of common/components',
}]
}],
'padded-blocks': 0,
'prefer-arrow-callback': 0,
'react/forbid-prop-types': 0,
Expand Down Expand Up @@ -146,6 +152,12 @@ module.exports = {
'no-prototype-builtins': 0,
'no-restricted-properties': 0,
'no-restricted-syntax': 0,
'no-restricted-imports': ['error', {
'paths': [{
'name': 'antd',
'message': 'Please import Ant components from the index of common/components',
}]
}],
'padded-blocks': 0,
'prefer-arrow-callback': 0,
'prefer-object-spread': 1,
Expand Down
Loading

0 comments on commit 51a88cb

Please sign in to comment.