Skip to content

Commit

Permalink
fixed generic font rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpigeon committed Sep 19, 2020
2 parents 35dfeba + 568008c commit a5c6bae
Show file tree
Hide file tree
Showing 321 changed files with 32,860 additions and 46,639 deletions.
33 changes: 0 additions & 33 deletions .babelrc

This file was deleted.

6 changes: 1 addition & 5 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ app/node_modules
# OSX
.DS_Store

# flow-typed
flow-typed/npm/*
!flow-typed/npm/module_vx.x.x.js

# App packaged
release
app/main.prod.js
Expand All @@ -50,4 +46,4 @@ main.js.map

.idea
npm-debug.log.*
.*.dockerfile
.*.dockerfile
12 changes: 8 additions & 4 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,9 @@ app/node_modules
# OSX
.DS_Store

# flow-typed
flow-typed/npm/*
!flow-typed/npm/module_vx.x.x.js

# App packaged
release
app/*.main.prod.js
app/main.prod.js
app/main.prod.js.map
app/renderer.prod.js
Expand All @@ -51,3 +48,10 @@ main.js.map
.idea
npm-debug.log.*
__snapshots__

# Package.json
package.json
.travis.yml
*.css.d.ts
*.sass.d.ts
*.scss.d.ts
65 changes: 0 additions & 65 deletions .eslintrc

This file was deleted.

51 changes: 51 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
module.exports = {
extends: 'erb/typescript',
rules: {
'@typescript-eslint/ban-ts-comment': 'warn',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/naming-convention': 'off',
'consistent-return': 'warn',
'dot-notation': 'off',
'import/no-extraneous-dependencies': 'off',
'import/prefer-default-export': 'off',
'jsx-a11y/anchor-is-valid': 'warn',
'jsx-a11y/click-events-have-key-events': 'warn',
'lines-between-class-members': 'off',
'max-classes-per-file': 'off',
'no-param-reassign': 'off',
'no-plusplus': 'off',
'no-restricted-syntax': 'off',
'prefer-destructuring': 'warn',
'promise/no-return-wrap': 'warn',
'react/destructuring-assignment': 'off',
'react/jsx-curly-newline': 'off',
'react/jsx-one-expression-per-line': 'off',
'react/jsx-props-no-spreading': 'off',
'react/jsx-wrap-multilines': 'off',
'react/no-access-state-in-setstate': 'warn',
'react/no-array-index-key': 'off',
'react/no-did-update-set-state': 'warn',
'react/no-will-update-set-state': 'warn',
'react/prop-types': 'off',
'react/static-property-placement': 'off',
},
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
project: './tsconfig.json',
tsconfigRootDir: __dirname,
createDefaultProgram: true,
},
settings: {
'import/resolver': {
// See https://github.com/benmosher/eslint-plugin-import/issues/1396#issuecomment-575727774 for line below
node: {},
webpack: {
config: require.resolve('./configs/webpack.config.eslint.js'),
},
},
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx'],
},
},
};
28 changes: 0 additions & 28 deletions .flowconfig

This file was deleted.

6 changes: 6 additions & 0 deletions .github/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
requiredHeaders:
- Prerequisites
- Expected Behavior
- Current Behavior
- Possible Solution
- Your Environment
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on: push

jobs:
release:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [macos-latest, windows-2019, ubuntu-18.04]

steps:
- name: Check out Git repository
uses: actions/checkout@v1

- name: Install Node.js, NPM and Yarn
uses: actions/setup-node@v1
with:
node-version: 13

- name: yarn install
run: |
yarn install
- name: yarn test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
yarn package-ci
yarn lint
yarn tsc
# Failing because virtual framebuffer not installed
# yarn build-e2e
# yarn test-e2e
61 changes: 9 additions & 52 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,77 +1,34 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Jupyter stuff
.ipynb_checkpoints
__pycache__


# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Auto-generated files
#yarn.lock
#package-lock.json

# flow-typed
flow-typed/npm

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/
app/utils/pyodide/src/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules

# next.js build output
.next
# OSX
.DS_Store

# App packaged
release
Expand All @@ -82,13 +39,13 @@ app/renderer.prod.js.map
app/style.css
app/style.css.map
dist
app/dist
dll
dll/renderer.dev.dll.js
dll/renderer.json
main.js
main.js.map

.idea
npm-debug.log.*
*.css.d.ts
*.sass.d.ts
*.scss.d.ts
keys.js
2 changes: 0 additions & 2 deletions .npmrc

This file was deleted.

1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

3 changes: 0 additions & 3 deletions .stylelintrc

This file was deleted.

Loading

0 comments on commit a5c6bae

Please sign in to comment.