Skip to content

Commit

Permalink
Merge pull request #18 from yusukeshibata/feature/typescript
Browse files Browse the repository at this point in the history
Feature/typescript
  • Loading branch information
yusukeshib authored Jul 18, 2020
2 parents f1feb84 + 2abd85a commit 124a0fb
Show file tree
Hide file tree
Showing 21 changed files with 1,218 additions and 2,917 deletions.
14 changes: 0 additions & 14 deletions .babelrc

This file was deleted.

36 changes: 36 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended'
],
plugins: [
'@typescript-eslint'
],
parserOptions: {
project: './tsconfig.json',
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
jsx: true
}
},
rules: {
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/camelcase': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-this-alias': 0,
'@typescript-eslint/no-namespace': 0,
'@typescript-eslint/triple-slash-reference': 1,
'@typescript-eslint/adjacent-overload-signatures': 0,
'@typescript-eslint/no-empty-interface': 0,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'prettier/prettier': 1,
'linebreak-style': 0
},
}
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: test

on: [push]
on:
pull_request:
branches:
- master

jobs:
build:
Expand Down
1 change: 0 additions & 1 deletion index.js

This file was deleted.

Loading

0 comments on commit 124a0fb

Please sign in to comment.