Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
9d72bce
build 3.0.0-alpha.1
mrholek May 13, 2019
f204804
chore: dependencies update
xidedix Jun 14, 2019
6274eba
fix(main): labelColor callback for CustomTooltips
xidedix Jun 14, 2019
fa7b668
Ship: v2.1.14
xidedix Jun 14, 2019
ce9cc5a
Merge pull request #480 from coreui/dev-v2-updates
xidedix Jun 14, 2019
7382df2
fix: babelrc config
xidedix Jun 17, 2019
314e48a
fix: readme links, add labels
xidedix Jun 17, 2019
fee22ce
chore: dependencies update
xidedix Jun 17, 2019
dd99d51
chore: changelog update
xidedix Jun 17, 2019
329dc2a
Merge pull request #481 from coreui/dev-v2.1.next
xidedix Jun 17, 2019
ef3c3ef
clean-up
mrholek Jun 24, 2019
a4df52e
refactor: new files strucuture
mrholek Jun 24, 2019
09c4b42
update views
mrholek Jun 24, 2019
0d40092
chore: update build scripts
mrholek Jun 24, 2019
3148bd9
chore(deps): bump lodash from 4.17.11 to 4.17.14
dependabot[bot] Jul 12, 2019
19f058f
chore: dependencies update
xidedix Jul 12, 2019
e326136
Ship: v2.1.15
xidedix Jul 12, 2019
fc3f93d
Merge branch 'dependabot'
xidedix Jul 12, 2019
6bd8759
fix(cards): outdated switch class, add card-header-actions
xidedix Jul 12, 2019
0cb1d81
Merge pull request #485 from coreui/fix-card-switch
xidedix Jul 12, 2019
1d6cc55
Ship v3.0.0-alpha.1
mrholek Sep 9, 2019
316036f
Ship v3.0.0-alpha.1
mrholek Sep 20, 2019
c63eb04
chore: update dependencies
mrholek Sep 20, 2019
112721f
Update README.md
mrholek Sep 23, 2019
4c4b29b
Ship v3.0.0-alpha.1
mrholek Nov 1, 2019
65dcf53
Update README.md
mrholek Nov 2, 2019
e575ec0
Update README.md
mrholek Nov 2, 2019
26b386d
Update README.md
mrholek Nov 2, 2019
94a3575
refactor: update icons and components to latest versions
mrholek Nov 12, 2019
30b1e09
Merge branch 'v3-next' of https://github.com/coreui/coreui-free-boots…
mrholek Nov 12, 2019
2ed3a3e
Create FUNDING.yml
mrholek Dec 4, 2019
4ee9080
Update README.md
mrholek Dec 5, 2019
d4a1302
Ship v3.0.0-rc.0
mrholek Jan 27, 2020
67d7755
Merge branch 'v3-next' of https://github.com/coreui/coreui-free-boots…
mrholek Jan 27, 2020
f5ddd3a
Ship v3.0.0-rc.0
mrholek Jan 27, 2020
c12f16d
release: v3.0.0-rc.1
mrholek Feb 14, 2020
b14cafa
release: v3.0.0
mrholek Feb 20, 2020
0b81083
merge: v3-next
mrholek Feb 20, 2020
30ad355
chore: update project dependencies and devDependencies
mrholek May 21, 2020
a1a8570
release: v3.2.0
mrholek May 21, 2020
53b52b3
Update README.md
mrholek Jun 8, 2020
94216f3
Update README.md
mrholek Jun 8, 2020
ab19fc9
Create stale.yml
mrholek Jun 24, 2020
6be52b5
Update stale.yml
mrholek Jun 24, 2020
d6408e2
fix: icons classes
mrholek Aug 2, 2020
2acb1b4
fix: icons names
mrholek Aug 2, 2020
20e5cfa
fix: icons names
mrholek Aug 2, 2020
2e9b861
style: strengthened gitignore
nquinlan Aug 13, 2020
35c4468
Merge pull request #544 from nquinlan/nq-gitignore
xidedix Aug 27, 2020
dd25620
build: update scripts
mrholek Nov 22, 2020
e7cab98
chore: update dependencies and devDependencies
mrholek Nov 22, 2020
e004b97
build: update mkdirp to 1.0.4
mrholek Nov 22, 2020
122e0cc
chore: update @coreui/coreui to v3.4.0
mrholek Nov 23, 2020
c351a32
Merge branch 'master' of https://github.com/coreui/coreui-free-bootst…
mrholek Nov 23, 2020
c3bcf14
docs: update version
mrholek Dec 15, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
272 changes: 47 additions & 225 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,235 +1,57 @@
{
"root": true,
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"plugins": ["compat"],
"extends": [
"plugin:import/errors",
"plugin:import/warnings",
"plugin:unicorn/recommended",
"xo/esnext",
"xo/browser"
],
"rules": {
// Possible Errors
"no-await-in-loop": "error",
"no-extra-parens": "error",
"no-prototype-builtins": "error",
"no-template-curly-in-string": "error",
"compat/compat": "error",
"valid-jsdoc": "error",

// Best Practices
"accessor-pairs": "error",
"array-callback-return": "error",
"block-scoped-var": "error",
"class-methods-use-this": "off",
"complexity": "error",
"consistent-return": "error",
"curly": "error",
"default-case": "error",
"dot-location": ["error", "property"],
"dot-notation": "error",
"eqeqeq": "error",
"guard-for-in": "error",
"no-alert": "error",
"no-caller": "error",
"no-div-regex": "error",
"no-else-return": "error",
"no-empty-function": "error",
"no-eq-null": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-label": "error",
"no-floating-decimal": "error",
"no-implicit-coercion": "error",
"no-implicit-globals": "error",
"no-implied-eval": "error",
"no-invalid-this": "off",
"no-iterator": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-magic-numbers": ["error", {
"ignore": [-1, 0, 1],
"ignoreArrayIndexes": true
"capitalized-comments": "off",
"indent": [
"error",
2,
{
"MemberExpression": "off",
"SwitchCase": 1
}
],
"no-multi-spaces": ["error", {
"ignoreEOLComments": true,
"exceptions": {
"AssignmentExpression": true,
"ArrowFunctionExpression": true,
"CallExpression": true,
"VariableDeclarator": true
}
}
"max-params": [
"warn",
5
],
"no-multi-str": "error",
"no-new": "error",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-octal-escape": "error",
"no-param-reassign": "off",
"no-proto": "error",
"no-restricted-properties": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-script-url": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "error",
"no-unmodified-loop-condition": "error",
"no-unused-expressions": "error",
"no-useless-call": "error",
"no-useless-concat": "error",
"no-useless-return": "error",
"no-void": "error",
"no-warning-comments": "off",
"no-with": "error",
"prefer-promise-reject-errors": "error",
"radix": "error",
"require-await": "error",
"vars-on-top": "error",
"wrap-iife": "error",
"yoda": "error",

// Strict Mode
"strict": "error",

// Variables
"init-declarations": "off",
"no-catch-shadow": "error",
"no-label-var": "error",
"no-restricted-globals": "error",
"no-shadow": "off",
"no-shadow-restricted-names": "error",
"no-undef-init": "error",
"no-undefined": "error",
"no-use-before-define": "off",

// Node.js and CommonJS
"callback-return": "off",
"global-require": "error",
"handle-callback-err": "error",
"no-mixed-requires": "error",
"no-new-require": "error",
"no-path-concat": "error",
"no-process-env": "error",
"no-process-exit": "error",
"no-restricted-modules": "error",
"no-sync": "error",

// Stylistic Issues
"array-bracket-spacing": "error",
"block-spacing": "error",
"brace-style": "error",
"camelcase": "error",
"capitalized-comments": "off",
"comma-dangle": "error",
"comma-spacing": "error",
"comma-style": "error",
"computed-property-spacing": "error",
"consistent-this": "error",
"eol-last": "error",
"func-call-spacing": "error",
"func-name-matching": "error",
"func-names": "off",
"func-style": ["error", "declaration", { "allowArrowFunctions": true }],
"id-blacklist": "error",
"id-length": "off",
"id-match": "error",
"indent": ["error", 2, { "SwitchCase": 1 }],
"jsx-quotes": "error",
"key-spacing": "off",
"keyword-spacing": "error",
"linebreak-style": ["error", "unix"],
"line-comment-position": "off",
"lines-around-comment": "off",
"lines-around-directive": "error",
"max-depth": ["error", 10],
"max-len": "off",
"max-lines": "off",
"max-nested-callbacks": "error",
"max-params": "off",
"max-statements": "off",
"max-statements-per-line": "error",
"multiline-ternary": "off",
"new-cap": ["error", { "capIsNewExceptionPattern": "$.*" }],
"newline-after-var": "off",
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }],
"new-parens": "error",
"no-array-constructor": "error",
"no-bitwise": "error",
"no-continue": "off",
"no-inline-comments": "off",
"no-lonely-if": "error",
"multiline-ternary": [
"error",
"always-multiline"
],
"new-cap": "off",
"no-mixed-operators": "off",
"no-multi-assign": "error",
"no-multiple-empty-lines": "error",
"nonblock-statement-body-position": "error",
"no-negated-condition": "off",
"no-nested-ternary": "error",
"no-new-object": "error",
"no-plusplus": "off",
"no-restricted-syntax": "error",
"no-tabs": "error",
"no-ternary": "off",
"no-trailing-spaces": "error",
"no-underscore-dangle": "off",
"no-unneeded-ternary": "error",
"no-whitespace-before-property": "error",
"object-curly-newline": ["error", { "minProperties": 1 }],
"object-curly-spacing": ["error", "always"],
"object-property-newline": "error",
"one-var": ["error", "never"],
"one-var-declaration-per-line": "error",
"operator-assignment": "error",
"operator-linebreak": "error",
"padded-blocks": ["error", "never"],
"padding-line-between-statements": "off",
"quote-props": ["error", "as-needed"],
"quotes": ["error", "single"],
"require-jsdoc": "off",
"semi": ["error", "never"],
"semi-spacing": "error",
"sort-keys": "off",
"sort-vars": "error",
"space-before-blocks": "error",
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never"
}],
"space-in-parens": "error",
"space-infix-ops": "error",
"space-unary-ops": "error",
"spaced-comment": "error",
"template-tag-spacing": "error",
"unicode-bom": "error",
"wrap-regex": "off",

// ECMAScript 6
"arrow-body-style": ["error", "as-needed"],
"arrow-parens": "error",
"arrow-spacing": "error",
"generator-star-spacing": "error",
"no-confusing-arrow": "error",
"no-duplicate-imports": "error",
"no-restricted-imports": "error",
"no-useless-computed-key": "error",
"no-useless-constructor": "error",
"no-useless-rename": "error",
"no-var": "error",
"object-shorthand": "error",
"prefer-arrow-callback": "error",
"prefer-const": "error",
"prefer-destructuring": "off",
"prefer-numeric-literals": "error",
"prefer-rest-params": "error",
"prefer-spread": "error",
"prefer-template": "error",
"rest-spread-spacing": "error",
"sort-imports": "error",
"symbol-description": "error",
"template-curly-spacing": "error",
"yield-star-spacing": "error"
"object-curly-spacing": [
"error",
"always"
],
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
],
"semi": [
"error",
"never"
],
"unicorn/explicit-length-check": "off",
"unicorn/filename-case": "off",
"unicorn/import-index": "off",
"unicorn/no-unused-properties": "error",
"unicorn/prefer-includes": "off",
"unicorn/prefer-node-append": "off",
"unicorn/prefer-node-remove": "off",
"unicorn/prefer-query-selector": "off",
"unicorn/prefer-text-content": "off",
"unicorn/prevent-abbreviations": "off"
}
}
File renamed without changes.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# These are supported funding model platforms

custom: "https://coreui.io/"
File renamed without changes.
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 360
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
13 changes: 12 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
/.idea
/.vs
node_modules
dist
.DS_Store

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# eslint cache
.eslintcache
Loading