CoolFace
Apppublic

PixelPiggy/CS_float

sourceHugging Faceupdated 10mo agoView on Hugging Face
0likes
.eslintrc.js27 linesDownload Raw Back to root
1module.exports = {2    "env": {3        "node": true,4        "es6": true5    },6    "extends": "eslint:recommended",7    "rules": {8        "indent": [9            "error",10            411        ],12        "linebreak-style": [13            "error",14            "unix"15        ],16        "quotes": [17            "error",18            "single"19        ],20        "semi": [21            "error",22            "always"23        ],24        "no-console": 0,25        "linebreak-style": 026    }27};