mirror of
https://github.com/dense-analysis/ale.git
synced 2026-02-17 07:24:13 +08:00
Add support for astro (#4780)
Some checks failed
CI / build_image (push) Has been cancelled
CI / test_ale (--linters-only) (push) Has been cancelled
CI / test_ale (--neovim-06-only) (push) Has been cancelled
CI / test_ale (--neovim-08-only) (push) Has been cancelled
CI / test_ale (--vim-80-only) (push) Has been cancelled
CI / test_ale (--vim-90-only) (push) Has been cancelled
Some checks failed
CI / build_image (push) Has been cancelled
CI / test_ale (--linters-only) (push) Has been cancelled
CI / test_ale (--neovim-06-only) (push) Has been cancelled
CI / test_ale (--neovim-08-only) (push) Has been cancelled
CI / test_ale (--vim-80-only) (push) Has been cancelled
CI / test_ale (--vim-90-only) (push) Has been cancelled
* feat: prettier for astro * feat: eslint for astro * feat: doc for astro
This commit is contained in:
0
test/test-files/eslint/astro-app/.eslintrc.js
Normal file
0
test/test-files/eslint/astro-app/.eslintrc.js
Normal file
0
test/test-files/eslint/astro-app/node_modules/eslint/bin/eslint.js
generated
vendored
Normal file
0
test/test-files/eslint/astro-app/node_modules/eslint/bin/eslint.js
generated
vendored
Normal file
17
test/test-files/eslint/astro-app/package.json
Normal file
17
test/test-files/eslint/astro-app/package.json
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "astro-app",
|
||||
"type": "module",
|
||||
"version": "0.0.1",
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
"start": "astro dev",
|
||||
"build": "astro check && astro build",
|
||||
"preview": "astro preview",
|
||||
"astro": "astro"
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^4.8.3",
|
||||
"@astrojs/check": "^0.7.0",
|
||||
"typescript": "^5.4.5"
|
||||
}
|
||||
}
|
||||
16
test/test-files/eslint/astro-app/src/pages/index.astro
Normal file
16
test/test-files/eslint/astro-app/src/pages/index.astro
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>Astro</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Astro</h1>
|
||||
</body>
|
||||
</html>
|
||||
3
test/test-files/eslint/astro-app/tsconfig.json
Normal file
3
test/test-files/eslint/astro-app/tsconfig.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "astro/tsconfigs/strict"
|
||||
}
|
||||
Reference in New Issue
Block a user