Add prettier

This commit is contained in:
Ivan Malison 2024-01-06 19:25:17 -07:00
parent 002ac7902d
commit 160590658b
3 changed files with 10 additions and 8 deletions

4
.dir-locals.el Normal file
View File

@ -0,0 +1,4 @@
((nil
.
((lsp-pylsp-server-command . ("poetry" "run" "pylsp"))
(apheleia-inhibit . nil))))

12
App.tsx
View File

@ -1,14 +1,12 @@
import React from "react";
import { SafeAreaView, Text } from "react-native";
const App: React.FC = () => {
return (
<SafeAreaView>
<Text>Hello, World!</Text>
</SafeAreaView>
);
return (
<SafeAreaView>
<Text>Hello, World!</Text>
</SafeAreaView>
);
};
export default App;

View File

@ -53,7 +53,7 @@
in with pkgs; {
defaultPackage = appBuild;
devShell = mkShell {
buildInputs = [ nodejs yarn watchman gradle_7 alejandra ];
buildInputs = [ nodejs yarn watchman gradle_7 alejandra nodePackages.prettier ];
ANDROID_SDK_BIN = android-sdk;
shellHook = ''
export JAVA_HOME=${pkgs.jdk17.home}