Skip to content

Commit

Permalink
Initialize repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaswrks committed Aug 25, 2023
0 parents commit 387419e
Show file tree
Hide file tree
Showing 110 changed files with 106,419 additions and 0 deletions.
92 changes: 92 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
##
# Browserslist config file.
#
# Many packages are aware of this config file's location.
#
# @note CUSTOM EDITS ONLY PLEASE!
# @note In the future this file will be updated automatically.
# @note Only `<custom:start.../custom:end>` will be preserved below.
#
# Generated using <https://www.npmjs.com/package/browserslist-generator>.
#
# import BLG from 'browserslist-generator';
# console.log( BLG.browsersWithSupportForEcmaVersion( 'es2021' ).join( '\n' ) );
#
# - Review BLG source: <https://o5p.me/4DC1Vq>.
# - Review browserlist report on production config: <https://o5p.me/Fvs3WP>.
# - Review our transpiler: <https://esbuild.github.io/content-types/#javascript>.
##

[production]
last 1 chrome versions
node >= 19.2.0
and_chr >= 85
chrome >= 85
and_ff >= 79
android >= 108
edge >= 85
samsung >= 14.0
safari >= 14
ios_saf >= 14.4
opera >= 71
firefox >= 79
not dead

[any]
last 1 chrome versions
node >= 19.2.0
and_chr >= 85
chrome >= 85
and_ff >= 79
android >= 108
edge >= 85
samsung >= 14.0
safari >= 14
ios_saf >= 14.4
opera >= 71
firefox >= 79
not dead

[cfp]
last 1 chrome versions
not dead

[cfw]
last 1 chrome versions
not dead

[node]
node >= 19.2.0
not dead

[web]
and_chr >= 85
chrome >= 85
and_ff >= 79
android >= 108
edge >= 85
samsung >= 14.0
safari >= 14
ios_saf >= 14.4
opera >= 71
firefox >= 79
not dead

[webw]
and_chr >= 85
chrome >= 85
and_ff >= 79
android >= 108
edge >= 85
samsung >= 14.0
safari >= 14
ios_saf >= 14.4
opera >= 71
firefox >= 79
not dead

##
# Customizations.
# <custom:start>

# </custom:end>
28 changes: 28 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
##
# Editor config file.
#
# Many packages are aware of this config file's location.
#
# @note CUSTOM EDITS ONLY PLEASE!
# @note In the future this file will be updated automatically.
# @note Only `<custom:start.../custom:end>` will be preserved below.
#
# @see https://editorconfig.org/
##

root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
max_line_length = 180
trim_trailing_whitespace = true

##
# Customizations.
# <custom:start>

# </custom:end>
15 changes: 15 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
##
# ESLint ignore file.
#
# ESLint is aware of this config file's location.
#
# @note CUSTOM EDITS ONLY PLEASE!
# @note In the future this file will be updated automatically.
# @note Only `<custom:start.../custom:end>` will be preserved below.
##

##
# Customizations.
# <custom:start>

# </custom:end>
21 changes: 21 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/**
* ESLint config file.
*
* ESLint is aware of this config file's location.
*
* @note CUSTOM EDITS ONLY PLEASE!
* @note In the future this file will be updated automatically.
* @note Only `<custom:start.../custom:end>` will be preserved below.
*/
/* eslint-env es2021, node */

const baseConfig = require('./dev/.files/eslint/config.cjs');
const { $obj } = require('./node_modules/@clevercanyon/utilities/dist/index.cjs');

/*
* Customizations.
* <custom:start> */

module.exports = $obj.mergeDeep({}, baseConfig, {});

/* </custom:end> */
Loading

0 comments on commit 387419e

Please sign in to comment.