Skip to content

Commit

Permalink
feat: simple unbounded/eventless joystick
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanStandel committed Jun 11, 2022
1 parent b8e24ff commit ba67925
Show file tree
Hide file tree
Showing 10 changed files with 543 additions and 333 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
"rules": {
// evidently doesn't resolve esm, real issues should break builds anyways
"import/no-unresolved": ["off"],
"@typescript-eslint/no-namespace": ["off"],
"import/export": ["off"],
// this rule is stupid
"no-restricted-globals": ["off"],
"prettier/prettier": ["error", {}, { "usePrettierrc": true }],
Expand Down
5 changes: 3 additions & 2 deletions .prettierrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"arrowParens": "avoid",
"parser": "typescript",
"quotes": "double",
"printWidth": 100,
"printWidth": 80,
"semi": true,
"trailingComma": "all"
"trailingComma": "all",
"bracketSameLine": false
}
8 changes: 1 addition & 7 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,29 +1,23 @@
const Solid = require("vite-plugin-solid")

module.exports = {

core: {
builder: "@storybook/builder-vite"
},

framework: "@storybook/html",

stories: [
"../src/**/*.stories.ts",
"../src/**/*.stories.tsx",
],

addons: [
"@storybook/addon-links",
"@storybook/addon-essentials"
],

async viteFinal(config, {configType}){
config.plugins.unshift(
//@ts-ignore
Solid({hot:false}),
)

return config
},

}
Loading

0 comments on commit ba67925

Please sign in to comment.